Jwt

data class Jwt(val token: String, val userIdentifier: String) : AuthenticationData

Authentication using JWT (JSON Web Token).

Constructors

Link copied to clipboard
constructor(token: String, userIdentifier: String)

Creates an instance of Jwt authentication data with the provided token and userIdentifier.

Properties

Link copied to clipboard

The JWT token used for authentication.

Link copied to clipboard

The identifier of the user associated with the JWT token.